home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Video Toaster 4.0
/
Video Toaster v4.0.iso
/
arexx
/
modeler
/
_saveme.lwm
next >
Wrap
Text File
|
1993-12-13
|
498b
|
16 lines
/* _SaveMe.lwm -- A little reminder to for you save your work!
By Arnie Cachelin © 1993 NewTek Inc. */
arg del
if del ="" then del=10
libadd = addlib("LWModelerARexx.port",0)
KeepGoing=1
KeepGoing=notify(2,"Hi, It may be a good time to save your work...","@Should I keep pestering you every "del" minutes?")
do while KeepGoing
Delay(del*50*60)
KeepGoing=notify(2,"! Hi, It may be a good time to save your work... ","","@Should I keep pestering you every "del" minutes?")
end
exit